home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / powerb5.zip / P5UTL006.TIP < prev    next >
Text File  |  1993-06-01  |  2KB  |  45 lines

  1. If you're having a hardware or software problem with your
  2. system, you often need to know who made your BIOS and when
  3. they made it. Your manual should have this information, but
  4. it's not always there and not always easy to locate. The
  5. BIOS date is usually displayed when you boot up, but having
  6. to reboot to get this information makes little sense. That's
  7. why I wrote ROMINFO.BAS, which displays the copyright
  8. notice, date, and machine ID type  embedded in the ROM BIOS
  9. without a reboot. ROMINFO also displays the probable type of
  10. system based on the machine ID byte. ROMINFO.BAS is written
  11. for DOS 5.0's QBasic, but you can easily modify it for
  12. BASICA and GW-BASIC by replacing the SELECT...CASE
  13. statements with IF...THEN statements. The program looks for
  14. the ID byte at address F000:FFFE, the copyright notice
  15. starting at F000:0 (the beginning of the ROM BIOS), and the
  16. ROM date beginning at address F000:FFF5. These addresses are
  17. used by almost all major ROM manufacturers, although some,
  18. such as DTK, don't place copyright information at the
  19. beginning. In that case, all you see on the screen for that
  20. information is garbage characters, or nothing at all,
  21. depending on what happens to be at that address.
  22.  
  23. Vincent D. O'Connor
  24. Babbitt, Minnesota
  25.  
  26. Editor's Note: This program will virtually always find the
  27. BIOS release date and the machine type, but the absence of
  28. the copyright notice is not necessarily the fault of the
  29. manufacturer. For instance, I use the QEMM-386 memory
  30. manager, which maps the F000:FFF5 area out of memory
  31. entirely. To read the copyright notice, I had to temporarily
  32. remove QEMM -- a trick that may work for you if you have the
  33. same problem. ROMINFO.BAS is in the P5UTL directory of your
  34. PowerBase *.* Volume 5 diskette. To run it, enter the
  35. command QBASIC /RUN ROMINFO at the DOS prompt while in the
  36. same directory as ROMINFO.BAS.
  37.  
  38.  
  39. Title: Reading Your ROM
  40. Category: UTL
  41. Issue Date: July, 1992
  42. Editor: Brett Glass
  43. Supplementary Files: P5UTL\ROMINFO.BAS
  44. Filename: P5UTL006.TIP
  45.